home *** CD-ROM | disk | FTP | other *** search
- package events
- {
- import flash.events.Event;
-
- public class NavigationEvent extends Event
- {
- public static const DEMO:String = "demo";
-
- public static const DEMO_EXIT:String = "demoExit";
-
- public static const SEARCH_TAB:String = "searchTab";
-
- public static const SPREADS_TAB:String = "spreadsTab";
-
- public static const BROWSE_BY_COVER:String = "browseByCover";
-
- public static const YEAR_SELECT:String = "yearSelect";
-
- public static const ISSUE_SELECT:String = "issueSelect";
-
- public static const PRINT:String = "print";
-
- public static const READ_MODE:String = "readMode";
-
- public static const SPREAD_MODE:String = "spreadMode";
-
- public static const NEXT_PAGE:String = "nextPage";
-
- public static const PREV_PAGE:String = "prevPage";
-
- public static const END_PAGE:String = "endPage";
-
- public static const START_PAGE:String = "startPage";
-
- public static const SELECT_PAGE:String = "selectPage";
-
- public static const NEXT_RESULT:String = "nextResult";
-
- public static const PREV_RESULT:String = "prevResult";
-
- public static const SEARCH_TEXT_CHANGE:String = "searchTextChange";
-
- public static const SEARCH_MODE_CHANGE:String = "searchModeChange";
-
- public static const SHOW_SEARCH_RESULT:String = "showSearchResult";
-
- public var eventData:Object;
-
- public function NavigationEvent(param1:String, param2:Object = null, param3:Boolean = false, param4:Boolean = false)
- {
- super(param1,param3,param4);
- this.eventData = param2;
- }
-
- override public function clone() : Event
- {
- return new NavigationEvent(type,eventData,bubbles,cancelable);
- }
- }
- }
-
-